h1 {
  text-align: center;
  color: #c0123e;
  font-size: 50px;
}

.textContainer {
  display: flex;
  justify-content: center;
}

.textbox {
  text-align: justify;
  width: 1000px;
  font-size: 25px;
}

.imgContainer {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.imgContainer img {
  width: 80%;
  max-width: 1000px;
  height: auto;
}

@media (max-width: 800px){
  h1 {
    font-size: 20px;
    margin-bottom: 0;
  }

  .textbox {
    font-size: 10px;
    width: 80%;
  }

  .imgContainer {
    margin-bottom: 20px;
  }
}